home *** CD-ROM | disk | FTP | other *** search
/ DS-CD ROM 2 1993 August / DS CD-ROM 2.Ausgabe (August 1993).iso / utility / ds0032 / example.men < prev    next >
Text File  |  1992-10-22  |  3KB  |  139 lines

  1. *Main Menu (20,8)
  2.  
  3.     #Application Programmes
  4.         %Applications
  5.  
  6.     #^Utilities
  7.         %Utilities
  8.  
  9.     #System ^Commands
  10.         ?Secret
  11.         !The system commands enable you to work on the
  12.         !level of the operating level of your computer
  13.         !and require profound knowledge of the system.
  14.         !An inexperienced user can easily damage essential
  15.         !data.
  16.         !This option is therefore protected by a password.
  17.         !(The password is "Secret" but don't tell anybody.
  18.  
  19.         %System Commands
  20.  
  21.     #^Edit Menu System
  22.         %Edit Menu System
  23.  
  24.     #P^rint Menu Batch File
  25.         cls
  26.         echo Please switch on your printer
  27.         echo.
  28.         pause
  29.         type example.men > prn
  30.  
  31.  
  32. *Applications (18,12)
  33.  
  34.    #Word Processing
  35.       $Textname:
  36.       gsedit $
  37.  
  38.    #Addresses
  39.       cd \gsadr
  40.       gsadr
  41.  
  42.    #Order Processing
  43.       cd \gsauf
  44.       gsauf
  45.  
  46.    #Spreadsheets
  47.       cd \lotus
  48.       lotus
  49.  
  50. *Utilities (32,11)
  51.  
  52.    #PC-Tools
  53.      cd\util
  54.      pctools
  55.  
  56.    #Quick-DOS
  57.      cd\util
  58.      qd
  59.  
  60.    #Norton Tools
  61.      cd\util
  62.      nu
  63.  
  64. *System Commands (22,12)
  65.    #Carry out command/batch file
  66.       $Which one?:
  67.       $
  68.       echo.
  69.       echo Press any key to return to the menu
  70.       pause >NUL
  71.  
  72.    #Exit to DOS
  73.       cls
  74.       echo Type "EXIT" to return to the menu
  75.       SET PROMPTMERK=%PROMPT%
  76.       PROMPT [GS-Menu active] %PROMPT%
  77.       command
  78.       PROMPT %PROMPTMERK%
  79.       SET PROMPTMERK=
  80.  
  81.    #Check Hard Disk
  82.       $Which Hard Disk:
  83.       chkdsk $
  84.       pause
  85.  
  86.    #Floppy Disk Commands
  87.       %Floppy Disk Commands
  88.  
  89. *Floppy Disk Commands (40,14)
  90.    #Format Floppy Disk
  91.       format a:
  92.  
  93.    #Show Floppy Disk Contents
  94.       dir a: /p/w
  95.       echo.
  96.       pause
  97.  
  98.    #Copy Floppy Disk A: -> A:
  99.       diskcopy a: a:
  100.  
  101.    #Copy Floppy Disk A: -> B:
  102.       diskcopy a: b:
  103.  
  104. *Edit Menu System (38,12)
  105.    #Edit Menu Batch File
  106.  
  107.       !
  108.       !A small DOS trick:
  109.       !
  110.       !Depending on the application the menu system can be called by
  111.       !different batch  files.  By entering %1 the correct (calling)
  112.       !batch file will be addressed. The "%1" equals the first
  113.       !parameter when the menu system is loaded.
  114.  
  115.       gsedit %1
  116.  
  117.    #View Documentation
  118.       list english.txt
  119.  
  120.    #Print Documentation
  121.       cls
  122.       echo Please switch on your printer !
  123.       echo.
  124.       pause
  125.       type english.txt >prn
  126.  
  127.    #Print Registration Form
  128.        cls
  129.        echo Please switch on your printer !
  130.        echo.
  131.        pause
  132.        type formular.txt > prn
  133.  
  134.    #Other Software by G&S
  135.        list werbung.txt
  136.        list sharewar.txt
  137.  
  138.  
  139.